home *** CD-ROM | disk | FTP | other *** search
/ Haight-Ashbury in the Sixties / Haight-Ashbury in the Sixties (1996)(Rockument)(Disc 1 of 2)[Mac-PC].iso / mac / MAIN / TUNEIN / TURNON / SHARED.DIR / 00555_Script_555 < prev    next >
Text File  |  1995-05-31  |  2KB  |  66 lines

  1. on startmovie
  2.   
  3.   global AutoPlayMode
  4.   global rolledShow, searchShow
  5.   global CreditsWindow, HelpWindow, TimeLineWindow
  6.   cursor [552,553]
  7.   -- following 3 lines added by TB on 5/6/95
  8.   puppetPalette "System"
  9.   updatestage
  10.   puppetPalette 0
  11.   --
  12.   -- following lines added by TB on 5/18/95
  13.   if the movie <> "CREDITS.DIR" then
  14.     if objectP(CreditsWindow) then
  15.       forget CreditsWindow
  16.     end if
  17.   end if
  18.   --
  19.   if the movie <> "HELP.DIR" then
  20.     if objectP(HelpWindow) then
  21.       forget HelpWindow
  22.     end if
  23.   end if
  24.   --
  25.   if the movie <> "TIMELINE.DIR" then
  26.     if rolledShow = false then
  27.       if searchShow = false then
  28.         if objectP(TimeLineWindow) then
  29.           forget TimeLineWindow
  30.         end if
  31.       end if
  32.     end if
  33.   end if
  34.   --
  35.   --
  36.   
  37.   If AutoPlayMode = "ON" then
  38.     set the puppet of sprite 40 = true
  39.     set the castnum of sprite 40 = 542
  40.     updatestage
  41.   else
  42.     set the puppet of sprite 40 = false
  43.     set the castnum of sprite 40 = 539
  44.     updatestage
  45.   end if
  46.   -- following lines added by TB on 5/18/95
  47.   if the movie = "TURNON.DIR" then
  48.     set the visibility of sprite 40 = false
  49.     set the visibility of sprite 42 = false
  50.     set the visibility of sprite 43 = false
  51.     set the visibility of sprite 44 = false
  52.     set the visibility of sprite 45 = false
  53.     set the visibility of sprite 46 = false
  54.     set the visibility of sprite 47 = false
  55.   else
  56.     set the visibility of sprite 40 = false
  57.     set the visibility of sprite 41 = false
  58.     set the visibility of sprite 42 = false
  59.     set the visibility of sprite 43 = false
  60.     set the visibility of sprite 44 = false
  61.     set the visibility of sprite 45 = false
  62.     set the visibility of sprite 46 = false
  63.     set the visibility of sprite 47 = false
  64.   end if
  65. end startmovie
  66.